home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / netbeans.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  92 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10149);
  10.  script_bugtraq_id(816);
  11.  script_version ("$Revision: 1.15 $");
  12.  script_cve_id("CAN-1999-1527");
  13.  name["english"] = "NetBeans Java IDE";
  14.  name["francais"] = "NetBeans Java IDE";
  15.  
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. The remote host is running NetBeans (recently renamed to
  20. Forte') Java IDE. There is a bug in this version that allows
  21. anyone to browse the files on this system.
  22.  
  23.  
  24. Solution : Set the HTTP server 'Enable' to FALSE in Project settings
  25. Risk factor : High";
  26.  
  27.  desc["francais"] = "
  28. Le systΦme distant fait tourner l'IDE Java NetBeans (renommΘ rΘcemment Forte')
  29. Il y a un problΦme dans cette version qui permet α n'importe qui
  30. de browser les fichiers prΘsents sur ce systΦme.
  31.  
  32. Solution : Mettez le 'Enable' de HTTP Server α FAUX dans les project settings
  33. ";
  34.  
  35.  script_description(english:desc["english"], francais:desc["francais"]);
  36.  
  37.  summary["english"] = "determines whether the remote root directory is browseable";
  38.  summary["francais"] = "determines whether the remote root directory is browseable";
  39.  script_summary(english:summary["english"], francais:summary["francais"]);
  40.  
  41.  script_category(ACT_GATHER_INFO);
  42.  
  43.  
  44.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  45.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  46.  family["english"] = "Remote file access";
  47.  family["francais"] = "AccΦs aux fichiers distants";
  48.  script_family(english:family["english"], francais:family["francais"]);
  49.  script_dependencie("find_service.nes", "httpver.nasl");
  50.  script_require_ports("Services/www", 80, 8082);
  51.  exit(0);
  52. }
  53.  
  54. #
  55. # The script code starts here
  56. #
  57. include("http_func.inc");
  58.  
  59. function netbeans(port)
  60. {
  61. if(get_port_state(port))
  62. {
  63.   soc = http_open_socket(port);
  64.   if(soc)
  65.   {
  66.   buffer = http_get(item:"/", port:port);
  67.   send(socket:soc, data:buffer);
  68.   data = http_recv(socket:soc);
  69.   http_close_socket(soc);
  70.   data_low = tolower(data);
  71.   seek = "<title>index of /</title>";
  72.   if(seek >< data_low)
  73.   {
  74.    if("netbeans" >< data_low) security_hole(port);
  75.   }
  76.   exit(0);
  77.  } 
  78. }
  79. }
  80.  
  81. #
  82. # NetBeans might be running on another port.
  83. netbeans(port:8082);
  84.  
  85. port = get_http_port(default:80);
  86. if(!port)exit(0);
  87. if(!(port == 8082))
  88. {
  89.   netbeans(port:port);
  90. }
  91.